home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d10 / rem23.arc / E2O.DOC < prev    next >
Text File  |  1991-02-19  |  590b  |  22 lines

  1. E2O
  2.  
  3. E2O is a program which redirects the standard error stream
  4. to standard output.  This is useful for sending standard error
  5. to a pipe or a file.
  6.  
  7. To use e2o, type:
  8.  
  9.     e2o progname [args]
  10.  
  11. where progname is an .exe or .com file, and args are any arguments
  12. expected by that program.
  13.  
  14. For example, to do a verbose debugging of a reminder file and save
  15. the results, type:
  16.  
  17.     e2o remind -d -v remfile > results.out
  18. --
  19. David Skoll
  20.  
  21. Note: E2O is written in C which makes it a pig at ~11K.  It could probably
  22. fit under 1K in assembler.  (But in C it took 5 minutes to write.)